|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--com.caucho.vfs.StreamImpl
|
+--com.caucho.vfs.PipeStream
Stream allowing two threads to read and write to each other.
| Fields inherited from class com.caucho.vfs.StreamImpl |
nullPath, path |
| Method Summary | |
boolean |
canRead()
PipeStreams can read |
boolean |
canWrite()
The pipe stream can write. |
void |
close()
Closes the stream. |
static java.lang.Object[] |
create()
Creates a pipe pair. |
int |
getAvailable()
Return the available bytes. |
int |
read(byte[] buf,
int offset,
int length)
Reads the available bytes if any, otherwise block. |
void |
write(byte[] buf,
int offset,
int length,
boolean isEnd)
Implementation of the pipe write. |
| Methods inherited from class com.caucho.vfs.StreamImpl |
clearWrite, flush, getAttribute, getAttributeNames, getFlushOnNewline, getNewline, getPath, getReadPosition, hasSkip, removeAttribute, setAttribute, setPath, skip |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
public static java.lang.Object[] create()
public boolean canRead()
canRead in class StreamImpl
public int read(byte[] buf,
int offset,
int length)
throws java.io.IOException
read in class StreamImplcom.caucho.vfs.StreamImplbuffer - byte array receiving the data.offset - starting offset into the array.length - number of bytes to read.
public int getAvailable()
throws java.io.IOException
getAvailable in class StreamImplpublic boolean canWrite()
canWrite in class StreamImpl
public void write(byte[] buf,
int offset,
int length,
boolean isEnd)
throws java.io.IOException
write in class StreamImplbuf - byte buffer containing the bytesoffset - offset where to start writinglength - number of bytes to writeisEnd - true when the write is flushing a close.
public void close()
throws java.io.IOException
StreamImplclose in class StreamImpl
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||